:root{
    --color: #ea7924;
    --color-2: #221f20;
    --color-3: #eca621;
    --color-4: #661f13;
    --color-5: #c94a26;
    --text-color: #fff;
}





/* ==========
Menu banner section
=========== */
.menu_banner{
    background-image: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%), url(../image/banner-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 50px 0;
}
.banner_content h2{
    color: var(--color);
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 15px;
}
.banner_content p{
    color: var(--text-color);
    font-size: 18px;
}
.banner_content p i{
    color: var(--color-5);
    font-size: 16px;
}
.banner_content p span{
    color: var(--color);
}









/* ==========
Contact us form section
=========== */
.contact_us_form{
    /* background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%); */
    background: var(--color-2);
}
.section_head h2{
    text-transform: capitalize;
}
.contact_form form label{
    color: var(--text-color);
}
.form-control{
    background: transparent;
    color: var(--text-color) !important;
}
.form-control:focus{
    background: transparent;
}
.contact_form form textarea{
    background: transparent;
    width: 100%;
    height: 70px;
    padding: 5px;
    outline: 0;
    border-radius: 4px;
    transition: all ease 0.4s;
    color: var(--text-color);
}
.contact_form form textarea:focus{
    border-color: var(--color-5);
}
.contact_form form .btn{
    float: right;
}
.right_content_ff{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;

}
.contact_right_content p{
    color: #ddd;
    font-size: 18px;
    font-style: italic;
}








/* ==========
contact details section
=========== */
.contact_details_section{
    background: var(--color-2);
}
.contact_details_right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 50px;
}
.contact_right_head h3{
    color: var(--color-5);
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 28px;
}
.contact_meddel ul li,
.contact_meddel ul li a{
    color: var(--text-color);
}
.contact_meddel ul li{
    margin-bottom: 10px;
}
.contact_meddel .social_link{
    margin-top: 20px;
}
.contact_meddel .social_link a i{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: var(--color);
    color: var(--text-color);
    font-size: 20px;
    margin-right: 5px;
    transition: all ease 0.4s;
}
.contact_meddel .social_link a i:hover{
    background: var(--color-5);
}
.contact_details_section .map iframe{
    box-shadow: 0 0 6px 1px var(--color-5);
}